Skip to content

Commit

Permalink
Move port definition from docker-compose.yml to override file (#46)
Browse files Browse the repository at this point in the history
* Remove ports from caddy in docker-compose.yml

* Add ports to caddy in docker-compose.override.yml

* Update VERSION

Bump version to 1.3.1
  • Loading branch information
cicalese authored Jul 27, 2023
1 parent 9fcbbc2 commit c01df3d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.3.1
5 changes: 4 additions & 1 deletion docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@ services:
web:
image: ghcr.io/canastawiki/canasta:1.3.0
#elasticsearch:
#caddy:
caddy:
ports:
- "${PORT:-80}:80"
- "${HTTPS_PORT:-443}:443"
#varnish:
3 changes: 0 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@ services:
entrypoint: caddy run --config /etc/caddy/Caddyfile --adapter caddyfile
environment:
- MW_SITE_FQDN=${MW_SITE_FQDN:-localhost}
ports:
- "${PORT:-80}:80"
- "${HTTPS_PORT:-443}:443"
volumes:
- caddy-data:/data
- ./config/Caddyfile:/etc/caddy/Caddyfile
Expand Down

0 comments on commit c01df3d

Please sign in to comment.