build: uncomment app container
This commit is contained in:
@@ -1,20 +1,20 @@
|
|||||||
version: '3.8'
|
version: '3.8'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# app:
|
app:
|
||||||
# build:
|
build:
|
||||||
# context: ./
|
context: ./
|
||||||
# dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
# image: app
|
image: app
|
||||||
# container_name: backend
|
container_name: backend
|
||||||
# restart: unless-stopped
|
restart: unless-stopped
|
||||||
# ports:
|
ports:
|
||||||
# - '3000:3000'
|
- '3000:3000'
|
||||||
# environment:
|
environment:
|
||||||
# - PORT=3000
|
- PORT=3000
|
||||||
# - DATABASE_URL=postgresql://postgres:postgres@postgres:5432/postgres
|
- DATABASE_URL=postgresql://postgres:postgres@postgres:5432/postgres
|
||||||
# depends_on:
|
depends_on:
|
||||||
# - postgres
|
- postgres
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:latest
|
image: postgres:latest
|
||||||
container_name: postgres
|
container_name: postgres
|
||||||
|
|||||||
Reference in New Issue
Block a user