mirror of
https://github.com/SpudGunMan/meshing-around.git
synced 2026-04-30 18:42:17 +02:00
7 lines
233 B
Bash
7 lines
233 B
Bash
#!/bin/bash
|
|
# instruction set the meshing-around docker container
|
|
|
|
# Substitute environment variables in the config file
|
|
envsubst < /app/config.ini > /app/config.tmp && mv /app/config.tmp /app/config.ini
|
|
|
|
exec python /app/mesh_bot.py |