Skip to content
Snippets Groups Projects
Commit 96b02a85 authored by Jan David Mol's avatar Jan David Mol
Browse files

Added PyPCC simulator hosted at pypcc-sim:4848.

parent 67fe6133
No related branches found
No related tags found
No related merge requests found
#
# 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:
- "4848:4848"
FROM ubuntu:20.04
RUN apt-get update && apt-get install -y python3 python3-pip python3-yaml git
RUN pip3 install opcua numpy
RUN git clone https://git.astron.nl/lofar2.0/pypcc
RUN cd pypcc && touch pylibi2c.py
WORKDIR /pypcc
CMD ["python3","fake-opcuaserv.py"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment