33 lines
654 B
YAML
33 lines
654 B
YAML
version: "3"
|
|
services:
|
|
dashersupply-app:
|
|
container_name: dashersupply-app
|
|
build: .
|
|
image: runtime:latest
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
environment:
|
|
SITE_URL: ${SITE_URL}
|
|
PORT: ${PORT}
|
|
WEBHOOK_PORT: ${WEBHOOK_PORT}
|
|
STRAPI_URL: ${STRAPI_URL}
|
|
STRAPI_API_TOKEN: ${STRAPI_API_TOKEN}
|
|
NODE_ENV: ${NODE_ENV}
|
|
#volumes:
|
|
# - dashersupply-app:/opt/app
|
|
ports:
|
|
- "4321:4321"
|
|
- "3210:3210"
|
|
networks:
|
|
- dashersupply
|
|
# depends_on:
|
|
# - dashersupply-strapi
|
|
|
|
volumes:
|
|
dashersupply-app:
|
|
|
|
networks:
|
|
dashersupply:
|
|
name: Dasher Supply
|
|
driver: bridge
|