mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-21 04:01:41 +10:00
Cleanup superfluous docker-compose.yml declarations
This commit is contained in:
@ -3,13 +3,10 @@ version: '3'
|
|||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:14.2-alpine
|
image: postgres:14.2-alpine
|
||||||
container_name: postgres
|
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_DB=postgres
|
- POSTGRES_DB=postgres
|
||||||
- POSTGRES_USER=postgres
|
- POSTGRES_USER=postgres
|
||||||
- POSTGRES_PASSWORD=postgres
|
- POSTGRES_PASSWORD=postgres
|
||||||
ports:
|
|
||||||
- 5432:5432
|
|
||||||
volumes:
|
volumes:
|
||||||
- pgdata:/var/lib/postgresql/data
|
- pgdata:/var/lib/postgresql/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
@ -22,7 +19,6 @@ services:
|
|||||||
|
|
||||||
traefik:
|
traefik:
|
||||||
image: traefik:rocamadour
|
image: traefik:rocamadour
|
||||||
container_name: traefik
|
|
||||||
command:
|
command:
|
||||||
- --providers.docker=true
|
- --providers.docker=true
|
||||||
- --providers.docker.exposedbydefault=false
|
- --providers.docker.exposedbydefault=false
|
||||||
@ -37,7 +33,6 @@ services:
|
|||||||
# build:
|
# build:
|
||||||
# context: .
|
# context: .
|
||||||
# dockerfile: ./server/Dockerfile
|
# dockerfile: ./server/Dockerfile
|
||||||
container_name: server
|
|
||||||
environment:
|
environment:
|
||||||
- TZ=UTC
|
- TZ=UTC
|
||||||
- PUBLIC_URL=http://localhost:3000
|
- PUBLIC_URL=http://localhost:3000
|
||||||
@ -81,7 +76,6 @@ services:
|
|||||||
# build:
|
# build:
|
||||||
# context: .
|
# context: .
|
||||||
# dockerfile: ./client/Dockerfile
|
# dockerfile: ./client/Dockerfile
|
||||||
container_name: client
|
|
||||||
environment:
|
environment:
|
||||||
- TZ=UTC
|
- TZ=UTC
|
||||||
- PUBLIC_URL=http://localhost:3000
|
- PUBLIC_URL=http://localhost:3000
|
||||||
|
|||||||
Reference in New Issue
Block a user