Generation mode aktivated again

This commit is contained in:
Philipp Horstenkamp 2022-07-04 00:20:08 +02:00
parent d6eb952226
commit bd29d92d64
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4
4 changed files with 56 additions and 417 deletions

View File

@ -44,6 +44,7 @@ repos:
args: [--autofix]
- id: pretty-format-yaml
args: [--autofix]
exclude: (docker-compose.yaml$)
- repo: https://github.com/jendrikseipp/vulture
rev: v2.3 # or any later Vulture version

View File

@ -11,8 +11,20 @@ services:
volumes:
- ./experiments:/pyrate/experiments
- ./data:/pyrate/data
# scale: 1
scale: 0
pyrate-gen:
build:
context: pyrate
dockerfile: pyrate.data_generator.dockerfile
restart: "unless-stopped"
volumes:
- ./data:/pyrate/data
environment:
- save_frequency=50
- seed_start=150
- continues=False
scale: 8
volumes:
experiments:

View File

@ -1,31 +0,0 @@
version: '3.9'
services:
pyrate:
build:
context: pyrate
dockerfile: pyrate.dockerfile
restart: "no"
container_name: pyrate
ports:
- "8888:8888"
volumes:
- ./experiments:/pyrate/experiments
- ./data:/pyrate/data
# scale: 1
pyrate-gen:
build:
context: pyrate
dockerfile: pyrate.data_generator.dockerfile
restart: "unless-stopped"
volumes:
- ./data:/pyrate/data
environment:
- save_frequency=50
- seed_start=150
- continues=False
scale: 0
volumes:
experiments:
data:

File diff suppressed because one or more lines are too long