forked from caracal-js/Incognito
-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c50638
commit 87d5b54
Showing
6 changed files
with
78 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,5 +30,3 @@ config.toml | |
# Stupidness | ||
~/ | ||
|
||
# Docker files that aren't needed in the real repo | ||
docker-compose.local.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,8 @@ games = true | |
[server] | ||
wisp = true | ||
port = 8000 | ||
|
||
[seo] | ||
enabled = false | ||
both = false | ||
domain = "http://localhost:8000" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
version: '3' | ||
|
||
# This file is for building the docker images and pushing them to the registry. You can safely ignore this | ||
|
||
services: | ||
incognito: | ||
image: motortruck1221/incognito:latest | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
container_name: incognito | ||
restart: unless-stopped | ||
ports: | ||
- '8081:8000' | ||
volumes: | ||
- ./config.toml:/app/config.toml | ||
incognito-versioned: | ||
image: motortruck1221/incognito:1.1.3 | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
container_name: incognito | ||
restart: unless-stopped | ||
ports: | ||
- '8081:8000' | ||
volumes: | ||
- ./config.toml:/app/config.toml | ||
incognito-seo: | ||
image: motortruck1221/incognito:latest-seo | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
args: | ||
- SEO=true | ||
container_name: incognito | ||
restart: unless-stopped | ||
ports: | ||
- '8081:8000' | ||
environment: | ||
- SEO=true | ||
- BOTH=true | ||
volumes: | ||
- ./config.toml:/app/config.toml | ||
incognito-seo-versioned: | ||
image: motortruck1221/incognito:1.1.3-seo | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
args: | ||
- SEO=true | ||
container_name: incognito | ||
restart: unless-stopped | ||
ports: | ||
- '8081:8000' | ||
environment: | ||
- SEO=true | ||
- BOTH=true | ||
volumes: | ||
- ./config.toml:/app/config.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters