Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reverting changes on docker-compose deploy #19

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions docker-compose-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ version: "3.9"

services:
app:
container_name: app
build:
context: .
restart: always
Expand All @@ -18,11 +17,8 @@ services:
depends_on:
db:
condition: service_healthy
networks:
- main

db:
container_name: db
image: postgres:13-alpine
restart: always
volumes:
Expand All @@ -36,21 +32,8 @@ services:
interval: 5s
timeout: 5s
retries: 5
networks:
- main

prometheus:
container_name: prometheus
image: prom/prometheus:latest
volumes:
- ./prometheus:/etc/prometheus
ports:
- "9090:9090"
networks:
- main

proxy:
container_name: proxy
build:
context: ./proxy
restart: always
Expand All @@ -60,11 +43,6 @@ services:
- 80:8000
volumes:
- static-data:/vol/static
networks:
- main

networks:
main:

volumes:
postgres-data:
Expand Down
2 changes: 1 addition & 1 deletion proxy/default.conf.tpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server {
listen ${LISTEN_PORT};
listen ${LISTEN_PORT};

location /static {
alias /vol/static;
Expand Down