You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
501 B
YAML
27 lines
501 B
YAML
version: "3"
|
|
services:
|
|
backend:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8090:8090"
|
|
stdin_open: true
|
|
# volumes:
|
|
# - /app/node_modules
|
|
# - ./backend:/app
|
|
# environment:
|
|
# MYSQL_HOST: mysql
|
|
# MYSQL_USER: root
|
|
# MYSQL_ROOT_PASSWORD: johnahn777
|
|
# MYSQL_DATABASE: myapp
|
|
# MYSQL_PORT: 3306
|
|
#
|
|
#
|
|
# nginx:
|
|
# restart: always
|
|
# build:
|
|
# dockerfile: ../Dockerfile
|
|
# context: ./nginx
|
|
# ports:
|
|
# - "3000:80" |