Goals React app
107
Used as frontend container to a goals docker-compose.yml project. Example for play-with-docker.com:
version: "3.8"
services:
backend:
image: 'florinbuzec/goals-node:v2024-05-04.2'
container_name: goals-backend
env_file:
- ./backend.env
volumes:
- logs:/app/logs
- /app/node_modules
ports:
- '80:80'
frontend:
image: 'florinbuzec/goals-react:v2024-05-04.12'
container_name: goals-frontend
# only used to the built image, but NODE_ENV is needed
# env_file:
# - ./frontend.env
depends_on:
- backend
ports:
- '3000:80'
#stdin_open: true
#tty: true
volumes:
logs:
Content type
Image
Digest
sha256:4f1800ee5…
Size
19.7 MB
Last updated
over 2 years ago
docker pull florinbuzec/goals-react:v2024-05-04.12