#
# Docker compose file that launches a PyPCC simulator
#
# Defines:
#   - pypcc-sim
#
version: '2'

services:
  pypcc-sim:
    build:
        context: pypcc-sim
    container_name: ${CONTAINER_NAME_PREFIX}pypcc-sim
    network_mode: ${NETWORK_MODE}
    volumes:
        - ${HOME}:/hosthome
    ports:
        - "4842:4842"
    restart: on-failure