20 lines
369 B
YAML
Executable File
20 lines
369 B
YAML
Executable File
|
|
version: '3.8'
|
|
|
|
name: auburnoil
|
|
services:
|
|
front:
|
|
container_name: auburnoil
|
|
image: anekdotin/auburn-oil_frontend:latest
|
|
restart: on-failure
|
|
ports:
|
|
- '5180:3000'
|
|
|
|
|
|
api:
|
|
restart: on-failure
|
|
image: anekdotin/auburn-oil_api:latest
|
|
ports:
|
|
- '5181:8000'
|
|
command: 'uvicorn app.main:app --reload --host 0.0.0.0 --port 8000'
|